home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
probesucc.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
970b
|
22 lines
/* RCSVER $Id: probesucc.sql,v 1.1 1999-03-15 10:21:04-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: probesucc.sql
* Date: 03/08/1999
* memo: Randy Wood
* Description: Create the probesucc table. THis table contains the
* PROBE_FILE_SUCCESS record from the farebox.
* Changes:
************************************************************************* */
CREATE TABLE probesucc
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_probesucc REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
filename VARCHAR2(20),
numbytes NUMBER(38), /* Number of bytes transferred */
CONSTRAINT pk_probesucc PRIMARY KEY (det_seq_num)
);